.menu {
    width: 100%;
    background-color: white;
}

.menuscrollaction {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.712);
    position: fixed;
    z-index: 10;
    transition: 0.9s;
}

.menuscrollaction:hover {
    width: 100%;
    background-color: rgb(255, 255, 255);
    position: fixed;
    z-index: 10;
}

.menucontent {
    display: flex;
    height: 50px;
    transition: 0.3s;
}

.menucontentscrollaction {
    display: flex;
    height: 40px;
    transition: 0.3s;
}

.menucontentscrollaction img{
    width: 100%;
    height: 150px;
    margin-top: -55px;
}

.menucontent img {
    width: 100%;
    height: 250px;
    margin-top: -100px;
}

.menubox {
    flex:15%;
    font-size: 18px;
    display: flex;
    text-decoration: none;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    justify-content: center;
    border-left: 1px solid rgba(88, 88, 88, 0.301);
    transition: 0.3s;
}

.menubox:hover {
    font-size: 19px;
    background-color: rgb(255, 217, 0); 
    border-left: 1px solid rgb(0, 0, 0);
}

.menubox:nth-child(1):hover {
    font-size: 19px;
    background-color: rgb(255, 255, 255); 
    border-left: 1px solid rgb(0, 0, 0);
}

.menubox a{
    width: 100%;
    color: rgb(44, 44, 44);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;  
    transition: 0.3s;

}

.menucontent div:nth-child(2) {
    animation: menua 0.5s ease forwards;
}

.menucontent div:nth-child(3) {
    animation: menua 1.0s ease forwards;
}

.menucontent div:nth-child(4) {
    animation: menua 1.5s ease forwards;
}

.menucontent div:nth-child(5) {
    animation: menua 2.0s ease forwards;
}

.menucontent div:nth-child(6) {
    animation: menua 2.5s ease forwards;
}

.menucontent div:nth-child(7) {
    animation: menua 3.0s ease forwards;
}


@keyframes menua {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.menubox a:hover{
    color: rgb(0, 0, 0);
}

.menubox button{
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    width: 100%;
    color: rgb(27, 27, 27);
    background-color: rgb(255, 217, 0);  
    border: none;
}

.menubox button:hover{
    color: white;
    background-color: rgb(0, 0, 0); 
    transition: 0.3s;
    cursor: pointer;
 
}

.tracker {
    position: fixed; /* Use fixed positioning */
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
    top: 50%; /* Placer les trackers au milieu de l'écran */
    left: 50%;
    transform: translate(-50%, -50%); /* Centrer les trackers */
}

#tracker {
    width: 10px;
    height: 10px;
    background-color: rgba(243, 208, 11, 0.445);
    top: 0;
    left: 0;
}

#slowTracker {
    width: 20px;
    height: 20px;
    border: 2px solid rgb(243, 208, 11);
    border-radius: 100%;
    top: 0;
    left: 0;
}

@media (max-width: 800px) {

    .menu {
        display: none;
    }

    .menucontentscrollaction {
        display: none;
    }
    
}
